home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Include / myproto.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  273 b   |  22 lines

  1. #ifndef Py_PROTO_H
  2. #define Py_PROTO_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. #ifdef HAVE_PROTOTYPES
  8. #define Py_PROTO(x) x
  9. #else
  10. #define Py_PROTO(x) ()
  11. #endif
  12.  
  13. #ifndef Py_FPROTO
  14. #define Py_FPROTO(x) Py_PROTO(x)
  15. #endif
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21. #endif /* !Py_PROTO_H */
  22.